home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / share / doc / gsfonts-x11 / README < prev   
Encoding:
Text File  |  2006-06-27  |  3.5 KB  |  80 lines

  1. gsfonts-x11 for Debian
  2. ======================
  3.  
  4. This packages makes the 35 Postscript fonts from the gsfonts package
  5. available to your X server under their "urw" names and via fonts.alias
  6. with the official "adobe" names, too.
  7.  
  8. This package does not contain any fonts itself but allows to reuse the
  9. ghostscript fonts as X11 screen fonts.
  10.  
  11. It may be a good idea to use these fonts under X11 because many
  12. drawing programs (xfig, sketch, gimp, ...) need high quality fonts,
  13. especially the 35 "standard" Postscript fonts, which are used by
  14. Postscript printers and Ghostscript.
  15.  
  16. If you have the original Adobe fonts available for X11, I suggest to
  17. place them somewhere under /usr/local/share/fonts and add this
  18. directory to the font path before /usr/share/fonts/X11/Type1, so the
  19. Adobe fonts have priority over the ghostscript fonts while the latter
  20. can be used as a fallback, if some Adobe font is missing.  You can
  21. change your font path by editing the xorg.conf(5x) file or by using
  22. xset(1x).  "xset q" displays the current font path configuration
  23. (among others).
  24.  
  25. You need the line
  26.   Load "type1"
  27. in your xorg.conf(5x) file in Section "Module", otherwise the X
  28. server cannot handle the postscript fonts.
  29.  
  30.  
  31. Font path order
  32. ^^^^^^^^^^^^^^^
  33.  
  34. If you notice problems with ugly small screen fonts (especially
  35. adobe-helvetica, adobe-courier and adobe-times) after installing
  36. gsfonts-x11, have a look at the order of your font path entries.  I
  37. suggest the following entries in xorg.conf:
  38.  
  39. Section "Files"
  40.         FontPath        "/usr/share/fonts/X11/misc"
  41.         FontPath        "/usr/share/fonts/X11/cyrillic"
  42.         FontPath        "/usr/share/fonts/X11/100dpi/:unscaled"
  43.         FontPath        "/usr/share/fonts/X11/75dpi/:unscaled"
  44.         FontPath        "/usr/share/fonts/X11/Type1"
  45.         FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  46.         FontPath        "/usr/share/fonts/X11/100dpi"
  47.         FontPath        "/usr/share/fonts/X11/75dpi"
  48. EndSection
  49.  
  50. With this font path the Adobe fonts are mentioned multiple times:
  51. 1) /usr/share/fonts/X11/100dpi/:unscaled, /usr/share/fonts/X11/75dpi/:unscaled
  52.    These contain the bitmap fonts from xfonts-75dpi(-transcoded) and
  53.    xfonts-100dpi(-transcoded) which contain bitmap Adobe fonts, which
  54.    are optimized for some screen resolutions.  The ":unscaled" option
  55.    tells the X server to use them only in their original size without
  56.    scaling them, which makes them ugly, because the pixels are scaled.
  57. 2) /usr/share/fonts/X11/Type1
  58.    This contains the postscript vector fonts from gsfonts-x11.  If no
  59.    optimized bitmap font was available above, this uses vector fonts
  60.    which are scalable and look good especially in big sizes.
  61. 3) /usr/share/fonts/X11/100dpi/, /usr/share/fonts/X11/75dpi
  62.    These again contain the bitmap fonts but this time the fonts can be
  63.    scaled.  This is a last resort fallback, if no scalable font was
  64.    available in the Type1 directory.
  65.  
  66. It isn't a good idea to use 100dpi/75dpi without the ":unscaled" tag
  67. before including Type1 in the font path, because this implies that the
  68. X server always tries to scale the bitmap fonts to large sizes instead
  69. of using the vector fonts, which look much better for large font
  70. sizes.
  71.  
  72. It also isn't a good idea to place the Type1 entry at the head of the
  73. font path, because the vector fonts aren't optimized or hinted for
  74. small font sizes, where the unscaled pixel fonts from 100dpi or 75dpi
  75. are preferable.
  76.  
  77.  
  78. Roland Rosenfeld <roland@debian.org> 
  79. $Id: README,v 1.7 2006-06-27 14:37:02 roland Exp $
  80.